home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / c / gencsrc.zip / INTARRAY.C < prev    next >
C/C++ Source or Header  |  1987-11-21  |  310b  |  14 lines

  1.                                           /* Chapter 7 - Program 3 */
  2. main()
  3. {
  4. int values[12];
  5. int index;
  6.  
  7.    for (index = 0;index < 12;index++)
  8.       values[index] = 2 * (index + 4);
  9.  
  10.    for (index = 0;index < 12;index++)
  11.       printf("The value at index = %2d is %3d\n",index,values[index]);
  12.  
  13. }
  14.